From: Niklas Laxström Date: Sun, 28 Sep 2008 09:31:24 +0000 (+0000) Subject: * (bug 15388) Title of Special:PrefixIndex X-Git-Tag: 1.31.0-rc.0~45050 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=3918deeeca6c250ba3288491f78ee8e52c386ef4;p=lhc%2Fweb%2Fwiklou.git * (bug 15388) Title of Special:PrefixIndex --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 89b45281f5..83d8585fbd 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -231,6 +231,7 @@ The following extensions are migrated into MediaWiki 1.14: * Http::request() now respects $wgHTTPtimeout when not using cURL * (bug 15158) Userinvalidcssjstitle not shown on preview * (bug 15196) Free external links should be numbered in a localised manner +* (bug 15388) Title of Special:PrefixIndex === API changes in 1.14 === diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index a360d509b2..581d4b0303 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -11,7 +11,7 @@ class SpecialPrefixindex extends SpecialAllpages { protected $nsfromMsg = 'allpagesprefix'; function __construct(){ - parent::__construct( 'Prefixindex' ); + parent::__construct( 'Prefixindex' ); } /** @@ -32,7 +32,7 @@ class SpecialPrefixindex extends SpecialAllpages { $wgOut->setPagetitle( ( $namespace > 0 && in_array( $namespace, array_keys( $namespaces ) ) ) ? wfMsg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) - : wfMsg( 'allarticles' ) + : wfMsg( 'prefixindex' ) ); if( isset( $par ) ){